home *** CD-ROM | disk | FTP | other *** search
- ' This script will wait for incoming faxes and receive them in the
- ' background. It is similar to the Fax/Auto receive option but you
- ' can run this script while QmodemPro for Windows is minimized.
-
- dim NewFaxes as integer
- NewFaxes = 0
-
- do
- cls
- print "New faxes received so far: "; NewFaxes
- print
- print "(Select Scripts/Execute or press the RunScript button to quit.)"
- print "Waiting for incoming FAX call..."
- waitfor "RING"
- if receivefax then
- NewFaxes = NewFaxes + 1
- end if
- loop
-